home *** CD-ROM | disk | FTP | other *** search
/ Reverse Code Engineering RCE CD +sandman 2000 / ReverseCodeEngineeringRceCdsandman2000.iso / RCE / Tools / Win95 Secrets / SETUP.Z / PEDUMP.BOR < prev    next >
Encoding:
Text File  |  1995-07-19  |  924 b   |  44 lines

  1. # NOTE: This program is built with the Borland PowerPack for DOS.
  2. # This allows the program to run under DOS, as well as Win32 OS's
  3. # If you don't have this product, simply remove "/ax" from the linker
  4. # command line, and replace DPMI32.LIB with IMPORT32.LIB in the library list.
  5.  
  6. .AUTODEPEND
  7.  
  8. PROJ = PEDUMP
  9.  
  10. BINDIR = D:\BC45\BIN
  11. LIBDIR = D:\BC45\LIB
  12. INCDIR = D:\BC45\INCLUDE
  13. CC_CFG = $(PROJ).CFG
  14.  
  15. BCC32   = $(BINDIR)\Bcc32 +$(CC_CFG) 
  16. TLINK32 = $(BINDIR)\TLink32
  17.  
  18. OBJS =  PEDUMP.OBJ \
  19.         COMMON.OBJ \
  20.         OBJDUMP.OBJ \
  21.         EXEDUMP.OBJ \
  22.         DBGDUMP.OBJ \
  23.         LIBDUMP.OBJ
  24.  
  25. $(PROJ).exe: $(CC_CFG) $(OBJS)
  26.   $(TLINK32) @&&|
  27.  -Tpe -ap -ax -c -x +
  28. c0x32.obj+
  29. $(OBJS)
  30. $(PROJ).EXE
  31.  
  32. $(LIBDIR)\dpmi32.lib+
  33. $(LIBDIR)\cw32.lib
  34. |
  35.  
  36. .c.obj:
  37.   $(BCC32) $<
  38.  
  39. # Compiler configuration file
  40. $(CC_CFG) : 
  41.    Copy &&|
  42. -c -v -I$(INCDIR) -O2 -4 -H=$(PROJ).csm -w -4 -Etasm.exe
  43. | $@
  44.